home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / BitOR.au3 < prev    next >
Text File  |  2007-09-08  |  135b  |  4 lines

  1. $x = BitOR(3, 6) ;x == is 7 because 0011 OR 0110 = 0111
  2.  
  3. $x = BitOR(3, 15, 32) ;x == 47 because 0011 OR 1111 OR 00100000 = 00101111
  4.